home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / CDTV / isodevpack-41 / devs / mountlist < prev    next >
Encoding:
Text File  |  1991-11-05  |  3.5 KB  |  158 lines

  1. ISO:
  2.    Device = bytedrive.device
  3.    FileSystem = l:ISO9660-Handler
  4.    Unit   = 0
  5.    Flags  = 0
  6.    Surfaces  = 1
  7.    BlocksPerTrack = 70
  8.    Reserved = 2
  9.    Interleave = 0 
  10.    LowCyl = 2  ;  HighCyl = 1170
  11.    Buffers = 30
  12.    GlobVec = -1
  13.    BufMemType = 0
  14.    MaxTransfer = 0x80000
  15.    Mount = 1
  16.    StackSize = 4000
  17. #
  18. /* MountList for raw trackdisk I/O */
  19.  
  20. DR1:   Device = bytedrive.device
  21.    FileSystem = l:BRD-Handler
  22.    GlobVec = -1
  23.    Mount = 1
  24.    DosType = 0x52444556
  25.    StackSize = 4000
  26.    Unit   = 0
  27.    Surfaces  = 1
  28.    BlocksPerTrack = 35
  29.    LowCyl = 0  ;  HighCyl = 2342
  30. #
  31. DT1:   Device = bytedrive.device
  32.    FileSystem = l:BRD-Debug
  33.    GlobVec = -1
  34.    Mount = 1
  35.    DosType = 0x52444556
  36.    StackSize = 4000
  37.    Unit   = 0
  38.    Surfaces  = 0
  39.    BlocksPerTrack = 0
  40.    LowCyl = 0  ;  HighCyl = 0
  41. #
  42.  
  43. /* MountList for V1.3 */
  44.  
  45. /*  Mount Entry for the new Console Handler */
  46.  
  47. NEWCON: 
  48.     Handler = L:Newcon-Handler
  49.     Priority = 5
  50.     StackSize = 1000
  51. #
  52.  
  53. /* This is an example of a non-filing system mount using a handler written
  54.    in C.
  55. */
  56.  
  57. SPEAK:     
  58.     Handler = L:Speak-Handler
  59.     Stacksize = 6000
  60.     Priority = 5
  61.     GlobVec = -1
  62. #
  63.  
  64. /*  This is an example of an alternative type of non-filing device mount,
  65.     used to mount the non-buffered serial handler
  66. */
  67.  
  68. AUX:
  69.     Handler = L:Aux-Handler
  70.     Stacksize = 1000
  71.     Priority = 5
  72. #
  73. /*  This is a non-filing system device */
  74.  
  75. PIPE:      
  76.     Handler = L:Pipe-Handler
  77.     Stacksize = 6000
  78.     Priority = 5
  79.     GlobVec = -1
  80. #
  81.  
  82. /* This is an example of a mount list entry for using the recoverable 
  83.    ram disk.  Depending on the amount of memory you wish to devote to
  84.    it, you may want to change the HighCyl value.
  85. */
  86.  
  87. RAD:       Device = ramdrive.device
  88.            Unit   = 0
  89.            Flags  = 0
  90.            Surfaces  = 2
  91.            BlocksPerTrack = 11
  92.            Reserved = 2
  93.            Interleave = 0
  94.            LowCyl = 0  ;  HighCyl = 21
  95.            Buffers = 5
  96.            BufMemType = 1
  97. #
  98.  
  99. /* Mount a 5.25" disk drive to be mounted as DF2: */
  100.  
  101. DF2:       Device = trackdisk.device
  102.            Unit   = 2
  103.            Flags  = 1
  104.            Surfaces  = 2
  105.            BlocksPerTrack = 11
  106.            Reserved = 2
  107.            Interleave = 0
  108.            LowCyl = 0  ;  HighCyl = 39
  109.            Buffers = 20
  110.            BufMemType = 3
  111. #
  112.  
  113. /* An example mount entry using the fast file system with a partition
  114.    of the hard disk using the 2090 disk controller.  PREP has been
  115.    used to create the first partition (up to cylinder 20).  The second
  116.    partition is MOUNTed, using the following entry:
  117.    NOTE: Some hard disk drivers require more stack than specified here.
  118.    Some may required less.
  119.    (The hard disk is not included; this is only an example.)
  120. */
  121.  
  122. FAST:
  123.     Device = hddisk.device
  124.     FileSystem = l:FastFileSystem
  125.     Unit   = 1
  126.     Flags  = 0
  127.     Surfaces  = 4
  128.     BlocksPerTrack = 17
  129.     Reserved = 2
  130.     Interleave = 0
  131.     LowCyl = 21  ;  HighCyl = 800
  132.     Buffers = 30
  133.     GlobVec = -1
  134.     BufMemType = 1
  135.     Mount = 1
  136.     DosType = 0x444F5301
  137.     StackSize = 4000
  138. #
  139.  
  140. /* Let's say you have an A2000 with an internal drive, and an external
  141.    drive, and you want to refer to the external drive as DF1: as well
  142.    as DF2:   Well, this MountList entry will do it for you.  This technique
  143.    can be extended to provide you with a drive A: and B: if you really
  144.    want.
  145. */
  146.  
  147. DF1:       Device = trackdisk.device
  148.            Unit   = 2
  149.            Flags  = 1
  150.            Surfaces  = 2
  151.            BlocksPerTrack = 11
  152.            Reserved = 2
  153.            Interleave = 0
  154.            LowCyl = 0  ;  HighCyl = 79
  155.            Buffers = 20
  156.            BufMemType = 3
  157. #
  158.